mirror of
http://106.12.3.193:3000/violeteverisland/learn_cpp.git
synced 2026-03-07 17:17:33 +08:00
14 lines
191 B
C++
14 lines
191 B
C++
|
|
//
|
|
// Created by violet on 2026/2/24.
|
|
//
|
|
#include <iostream>
|
|
namespace std {
|
|
int x =1;
|
|
}
|
|
int main() {
|
|
int a = 1;
|
|
auto b = std::x+1;
|
|
std::cout <<b<< std::endl;
|
|
return 0;
|
|
} |