Luogu Exam Bank—Introduction 1—Sequence Structure—P5703 [Deep Foundation 2. Example 5] Apple Purchase

1. Topic requirements

Two, the code

 

#include <iostream>
using namespace std;

int main()
{
int a,b,c;	
cin >> a;
cin >> b;
c =a*b;	
cout <<c;
return 0;	
}

おすすめ

転載: blog.csdn.net/ssismm/article/details/128493494