我是傻子

This commit is contained in:
Estom
2021-10-24 16:16:16 +08:00
parent 6a77a078ee
commit 33987d501d
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include<iostream>
using namespace std;
int main(){
float x = 2.5,y=4.7;
int a =8;
cout<<a%3<<endl;
cout<<x+a%3*(int)(x+y)<<endl;
return 0;
}