1. 程式人生 > 其它 >【入門1】順序結構 P5703 【深基2.例5】蘋果採購 乘法

【入門1】順序結構 P5703 【深基2.例5】蘋果採購 乘法

技術標籤:NOIP 提高組 複賽NOIP 普及組 初賽

【入門1】順序結構 P5703 【深基2.例5】蘋果採購

【入門1】順序結構

AC程式碼如下:

#include <bits/stdc++.h>
int main(){
	int a,b,c;
	scanf("%d%d",&a,&b);
	c=a*b;
	printf("%d\n",c);
	return 0;
}