下方代码,一共创建了( )个变量。
#include<iostream>
using namespace std;
int main(){
int a =10;
int b =20;
int c=30;
a =30;
b=10;
c=20;
return 0;
}
6
3
5
7